home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH10_2.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  570b  |  32 lines

  1. #include "stdio.h"
  2.  
  3. void main()
  4. {
  5. FILE *infile;
  6. char c, infilename[25], inputline[100];
  7. int line = 1;
  8.  
  9.    printf("Enter input file name ----> ");
  10.    scanf("%s", infilename);
  11.    infile = fopen(infilename, "r");
  12.  
  13.    printf("%5d", line);
  14.    do {
  15.       c = fgets(inputline, 100, infile);  /* read a line */
  16.       if (c != NULL) {
  17.          printf("%5d %s", line, inputline);
  18.       line++;
  19.       }
  20.    } while (c != NULL);
  21.  
  22.    fclose(infile);
  23. }
  24.  
  25.  
  26.  
  27. /* Result of execution
  28.  
  29. (You will get a listing of the file on the monitor with line numbers)
  30.  
  31. */
  32.